Scroll Progress Bar

Flash Cards


What is used to access the value a pointer points to in C?


Dereference

What type of memory does malloc allocate in C?


Dynamic

What is malloc used for in C?


Memory

What does calloc initialize memory to in C?


Zero

What is the purpose of realloc in C?


Resize

What function is used to release memory in C?


Free

What is the return type of malloc in C?


Pointer

What is a C file?


Data

What is the purpose of fopen() in C?


Open

What function is used to read data from a file in C?


fread

What function is used to write data to a file in C?


fwrite

What is the purpose of fclose() in C?


Close